home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
varie
/
dito40.lha
/
DITO
/
Install
< prev
next >
Wrap
Text File
|
1996-11-14
|
2KB
|
105 lines
; INSTALLERSCRIPT for DITO 4.0+
; (C)opyright by Dirk Holtwick, 1996
; -----------------------------------------
(message
"\nDITO 4.0\n\n"
"© Dirk Holtwick, 1996\n"
"MUI © Stefan Stuntz, 1992-1996\n"
"TextField © Mark Thomas, 1995\n"
"Config © Adam Daves, 1996\n\n"
"DITO is a very flexible learning system for "
"languages. Notice that it is SHAREWARE and that "
"you have to pay a fee of 30 DM or $20 to the author, if you "
"want to use it frequently. In the demo version some "
"functions are not fully functional.\n\n"
"Enjoy it, Dirk"
)
;
; dito.library
; ------------
(copylib
(prompt "Copying dito.library")
(help @copylib-help)
(source "dito.library")
(dest "LIBS:")
(confirm)
)
;
; textfield.gadget
; ----------------
(copylib
(prompt "Copying TextField.gadget")
(help @copylib-help)
(source "gadgets/textfield.gadget")
(dest "SYS:Classes/Gadgets/")
(confirm)
)
;
; phonetics.font
; --------------
(set name
(askbool
(prompt "Do you want to install the 'phonetics.font' that has"
" been created to offer a phonetic charset to DITO?")
(help "It's up to YOU.")
(default 0)
)
)
(if name
(copyfiles
(prompt "Copying font.")
(help @copyfiles-help)
(source "fonts/")
(dest "fonts:")
(all)
)
)
;
; Copy all files
; --------------
(set destname
(askdir
(prompt "Where do you want to install DITO (a directory will be created)")
(help @askdir-help)
(default "Work:")
)
)
(set destname (tackon destname "DITO"))
(makedir
destname
(infos)
)
(copyfiles
(prompt "Copying all files")
(help @copyfiles-help)
(pattern "~(dito.library|gadgets|fonts|install#?|readme#?)")
(source "")
(dest destname)
)
;
; Modify Startup-Sequence
; -----------------------
(startup "DITO"
(prompt
"One ASSIGN has to be added to the \"S:user-startup\" so that your system will be properly configured to use DITO.")
(help "An assign called DITO: will be added. If you don't use this "
"option, your system may not work properly on your machine.")
(command "assign DITO: " destname "\n")
)